/* style.css - Basis opmaak voor de PHP-pagina */

/* Algemene stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #bfbfbf;
    color: #333;
}

.container {
    
    margin: 0 auto;
    padding: 20px;
    background-color: #bfbfbf;
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header stijlen */
header {
    background: linear-gradient(to bottom, black, lightgray);
    color:white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

header h1 {
    margin-bottom: 15px;
    font-size: 2em;
    text-shadow: 
    /* Outline effect */
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    /* Drop shadow */
    4px 4px 8px rgba(0, 0, 0, 0.5);

}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
    text-decoration: underline;
}

/* Main content stijlen */
main {
    padding: 20px;
    background-color: #bfbfbf;
    border-radius: 5px;
    margin-bottom: 20px;
    min-height: 400px;
}

main h2 {
    color: #dddf;
    text-shadow: 
    /* Outline effect */
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    /* Drop shadow */
    4px 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

main p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Footer stijlen */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    header h1 {
        font-size: 1.5em;
    }
    
    nav a {
        display: inline-block;
        margin-bottom: 5px;
    }
    
    main {
        padding: 15px;
    }
}

/* Extra styling voor content */
.card {
    background-color: #f9f9f9;
    border-left: 4px solid #667eea;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.button {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    
}


 .custom-image {
            width: 500px;
            height: auto;
            border: 3px solid #ddd;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: block;
            margin: 20px auto;
        }
        
        .custom-image:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        
        .rounded-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #000000;
        }
        
        .outline-and-shadow {
  color: white;
  text-shadow: 
    /* Outline effect */
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    /* Drop shadow */
    4px 4px 8px rgba(0, 0, 0, 0.5);
}

        
.button:hover {
    background-color: #764ba2;
}